home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / stdio / getchar.c < prev    next >
C/C++ Source or Header  |  1988-07-13  |  1KB  |  48 lines

  1. /* 
  2.  * getchar.c --
  3.  *
  4.  *    Source code for a procedural version of the getchar macro.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: proto.c,v 1.2 88/03/11 08:39:08 ouster Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include <stdio.h>
  21. #undef getchar
  22.  
  23. /*
  24.  *----------------------------------------------------------------------
  25.  *
  26.  * getchar --
  27.  *
  28.  *    This procedure returns the next input character from stdin.
  29.  *    It's a procedural version of the getchar macro.
  30.  *
  31.  * Results:
  32.  *    The .The result is an integer value that is equal to EOF if an
  33.  *    end of file or error condition was encountered on stdin.
  34.  *    Otherwise, it is the value of the next input character from
  35.  *    stdin.
  36.  *
  37.  * Side effects:
  38.  *    A character is removed from stdin.
  39.  *
  40.  *----------------------------------------------------------------------
  41.  */
  42.  
  43. int
  44. getchar()
  45. {
  46.     return getc(stdin);
  47. }
  48.